home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 February / Macworld (1999-02).dmg / Serious Demos / XTension demo / Scripts / Its Dark.Off < prev    next >
Text File  |  1998-07-28  |  365b  |  12 lines

  1. --This script will block the group"All Outside Lights"
  2. -- it is no longer dark, and we should not allow them
  3. -- to be controlled by other scripts such as motion sensors.
  4.  
  5. if time of (current date) < 6 * hours then
  6.     write log "It's getting light early today"
  7. else
  8.     write log "It's getting light outside"
  9.     turnoff "Outside Lights"
  10.     block unit "Outside Lights"
  11. end if
  12.